home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Printing
/
PrintPage.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
422b
|
34 lines
// PrintPage.h
#ifndef PrintPage_h
#define PrintPage_h
#ifndef Integers_h
#include "Integers.h"
#endif
#include <Printing.h>
class PrintManager;
class PrintPage
{
private:
TPrPort *port;
static bool pageExists;
// not implemented:
PrintPage( const PrintPage& );
void operator=( const PrintPage& );
public:
PrintPage();
~PrintPage();
void Start( TPrPort& );
void End();
};
#endif